home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / dev / gui / mui23dev.lha / MUI / Developer / Autodocs / MUI_Gauge.doc < prev    next >
Text File  |  1994-12-23  |  2KB  |  90 lines

  1. TABLE OF CONTENTS
  2.  
  3. Gauge.mui/Gauge.mui
  4. Gauge.mui/MUIA_Gauge_Current
  5. Gauge.mui/MUIA_Gauge_Divide
  6. Gauge.mui/MUIA_Gauge_Horiz
  7. Gauge.mui/MUIA_Gauge_InfoText
  8. Gauge.mui/MUIA_Gauge_Max
  9. Gauge.mui/Gauge.mui
  10.  
  11.     A gauge object is a nice looking display element useful
  12.     for some kind of progress display.
  13. Gauge.mui/MUIA_Gauge_Current
  14.  
  15.     NAME
  16.     MUIA_Gauge_Current -- (V4 ) [ISG], LONG
  17.  
  18.     FUNCTION
  19.     Set the current level of the gauge. The value must be
  20.     between 0 and MUIA_Gauge_Max.
  21.  
  22.     SEE ALSO
  23.     MUIA_Gauge_Max
  24. Gauge.mui/MUIA_Gauge_Divide
  25.  
  26.     NAME
  27.     MUIA_Gauge_Divide -- (V4 ) [ISG], BOOL
  28.  
  29.     FUNCTION
  30.     If this attribute is != 0, every value set with
  31.     MUIA_Gauge_Current will be divided by this before
  32.     further processing.
  33.  
  34.     EXAMPLE
  35.     See BoopsiDoor demo program.
  36.  
  37.     SEE ALSO
  38.     MUIA_Gauge_Current
  39. Gauge.mui/MUIA_Gauge_Horiz
  40.  
  41.     NAME
  42.     MUIA_Gauge_Horiz -- (V4 ) [I..], BOOL
  43.  
  44.     FUNCTION
  45.     Determine if you want a horizontal or vertical gauge.
  46.     Default to FALSE
  47.  
  48.     SEE ALSO
  49.     MUIA_Gauge_Current
  50. Gauge.mui/MUIA_Gauge_InfoText
  51.  
  52.     NAME
  53.     MUIA_Gauge_InfoText -- (V7 ) [ISG], char *
  54.  
  55.     FUNCTION
  56.     The text given here is displayed within a gauge object
  57.     and is usually intended to show some kind of percentage
  58.     information.
  59.  
  60.     This texts preparse is set to "\33c\0338", this makes
  61.     it appear centered and highlighted by default.
  62.  
  63.     Any %ld will be replaced with the current value of
  64.     MUIA_Gauge_Current.
  65.  
  66.     Note: Currently, InfoText works only for horizontal
  67.     gauges and gives them a fixed height.
  68.  
  69.     VERSION
  70.     Implemented in version 7 of gauge class (MUI 1.5).
  71.  
  72.     EXAMPLE
  73.     ...
  74.     MUIA_Gauge_InfoText, "%ld %%",
  75.     ...
  76.  
  77.     SEE ALSO
  78.     MUIA_Gauge_Current
  79. Gauge.mui/MUIA_Gauge_Max
  80.  
  81.     NAME
  82.     MUIA_Gauge_Max -- (V4 ) [ISG], LONG
  83.  
  84.     FUNCTION
  85.     Set the maximum value for the gauge.
  86.     Defaults to 100.
  87.  
  88.     SEE ALSO
  89.     MUIA_Gauge_Current
  90.